home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / cli-common / gac-remove < prev    next >
Text File  |  2009-03-13  |  335b  |  17 lines

  1. #!/bin/bash
  2.  
  3. if [ ! -x /usr/share/cli-common/runtimes.d/$1 ]; then
  4.     echo ! Cannot remove GAC $1
  5.     exit 1
  6. fi
  7.  
  8. echo "* Removing packages from $1"
  9.  
  10. for file in /usr/share/cli-common/packages.d/*.installcligac
  11. do
  12.   if [ -f $file ]; then
  13.       /usr/share/cli-common/runtimes.d/$1 remove \
  14.       $(basename $file .installcligac)
  15.   fi
  16. done
  17.